home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-05-07 | 829 b | 36 lines |
- TREE= /usr/postgres
- OD= /usr/postgres/obj.linux
- SD= /usr/postgres/src
- PORTNAME= linux
- PORTDIR= port/linux
- PORTLDFLAGS= # -static
-
- GCFLAGS= -O2 # -g -Wmissing-prototypes -DNO_ASSERT_CHECKING
- BKIFLAGS=
- LDFLAGS= $(GCFLAGS)
- CFLAGS= $(GCFLAGS) \
- -I$(SD)/lib/H \
- -I$(SD)/lib/H/obsolete \
- -I$(OD)/lib/H \
- -I$(SD)/$(PORTDIR) \
- -D__USE_BSD_SIGNAL
- DIRS= ./dirs.mk
- LIBS= -lm -lipc
- DEMOCCOPTS=
- #
- # Makefile.raw -- raw makefile for sample libpq programs.
- #
- # In order to generate a makefile from this file, cd to the
- # newconf directory and type 'Make sample'.
- #
- # $Header: /private/postgres/sample/RCS/Makefile.raw,v 1.2 1991/12/10 05:11:56 mao Exp $
- #
-
- SAMPLIBS= libpq.a
-
- pgstats: pgstats.o
- $(CC) $(CFLAGS) -o pgstats pgstats.o $(OD)/$(SAMPLIBS) $(LIBS)
-
- pftp: pftp.o
- $(CC) $(CFLAGS) -o pftp pftp.o $(OD)/$(SAMPLIBS) $(LIBS)
-